for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
import { useStaticQuery, graphql } from 'gatsby';
export const getSocialButtonsProvider = () => {
const { buttons } = useStaticQuery(graphql`
{
buttons: dataYaml(slug: {eq: "social-buttons"}) {
items {
key
title
href
icon
}
}`);
return buttons;
};